home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
COLOR.C
< prev
next >
Wrap
Text File
|
1989-04-09
|
813b
|
20 lines
/*
┌────────────────────────────────────────────────────────────────────────────┐
│ Color.c │
│ Set the global colors used with the window and wprintf routines │
│ Usage │
│ color(WHITE,BLUE); │
│ │
│ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
└────────────────────────────────────────────────────────────────────────────┘
*/
extern int g_fore,g_back,_attr;
color( ffore , fback )
int ffore , fback;
{
g_fore = ffore;
g_back = fback;
_attr = g_back * 16 | g_fore & 0x7f;
}